home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / wackowiki_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  84 lines

  1. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  2. #  based on work from
  3. #  (C) Tenable Network Security
  4. #
  5. # This script is released under the GNU GPLv2
  6.  
  7. if(description)
  8. {
  9.  script_id(14230);
  10.  script_bugtraq_id(10860);
  11.  script_version ("$Revision: 1.6 $");
  12.  name["english"] = "WackoWiki XSS";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host seems to be running the WackoWiki CGI suite.
  18.  
  19. Based on the version information gathered by Nessus, this instance 
  20. of WackoWiki may be vulnerable to a remote authentication attack.
  21.  
  22. Exploitation of this vulnerability may allow for theft of cookie-based 
  23. authentication credentials and cross-site scripting attacks. 
  24.  
  25. Solution : Update or disable this CGI suite
  26. Risk factor : Medium";
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for WackoWiki XSS flaw";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_ATTACK);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  37.  family["english"] = "CGI abuses : XSS";
  38.  family["francais"] = "Abus de CGI";
  39.  script_family(english:family["english"], francais:family["francais"]);
  40.  script_dependencie("find_service.nes", "http_version.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51.  
  52. port = get_http_port(default:80);
  53.  
  54. if(!get_port_state(port))
  55.     exit(0);
  56.  
  57. if(http_is_dead(port:port))
  58.     exit(0);
  59.  
  60. function check(url)
  61. {
  62.     req = http_get(item:string(url, "/WackoWiki"),
  63.          port:port);
  64.     r = http_keepalive_send_recv(port:port, data:req);
  65.     if ( r == NULL ) 
  66.         exit(0);
  67.     #Powered by WackoWiki R4.0
  68.      if(egrep(pattern:"Powered by .*WackoWiki R3\.5", string:r))
  69.      {
  70.          security_warning(port);
  71.         exit(0);
  72.     }
  73.  
  74. }
  75.  
  76. check(url:"");
  77. foreach dir (cgi_dirs())
  78. {
  79.  check(url:dir);
  80. }
  81.  
  82.  
  83.  
  84.